home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win Troubleshooting.xpl < prev    next >
Text File  |  2004-04-29  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH 1"="Network\Security\Passwords"
  5. "NAME"="Screensaver Password"
  6. "VERSION"="1.17"
  7. "OSVERSION"="1110110"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Delete Screensaver Password"
  10. "DESCRIPTION 1"="Click the button if you have set a password for your screensaver and you do not remember it anymore."
  11. "DESCRIPTION 2"="IMPORTANT: This works ONLY for screensavers that allow you to specify your own password!"
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to SΘbastien MAURICE [sebastien.maurice@iep-aix.u-3mrs.fr] for his help!"
  16.  
  17. 'old value was:
  18. 'sV1="HKUS\.Default\Control Panel\desktop\ScreenSave_Data"
  19. sV1="HKCU\Control Panel\desktop\ScreenSave_Data"
  20. Sub Plugin_Initialize 
  21. End Sub
  22.  
  23. Sub Plugin_CheckData(ElementIndex)
  24. End Sub
  25.  
  26. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  27.  
  28.  
  29.  i=ElementIndex
  30.  Select Case i
  31.  
  32.   Case 1
  33.    s=RegReadValue(sV1)
  34.    if IsEmpty(s)=false then
  35.       Call RegDeleteValue(sV1)
  36.    end if
  37.  
  38.    Call MsgInformation("Deleted")
  39.  
  40.  end select
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.